Feature/fee collected event - #385
Merged
ogazboiz merged 6 commits intoApr 28, 2026
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
closes #329
This PR implements the handling for the
fee_collectedcontract event and introduces treasury fee reporting for administrators. It also resolves several underlying build and type-related issues in the backend to ensure a successful production build.Key Features
1. Fee Event Indexing & Real-time Updates
handleFeeCollectedinSorobanEventWorkerto decode and persistfee_collectedevents emitted during stream creation and top-ups.sseService.broadcastToAdminto notify administrative subscribers immediately when a protocol fee is collected.stream_createdevents are always processed beforefee_collectedevents to maintain database integrity and foreign key constraints.2. Administrative Metrics
/v1/admin/metricsendpoint to provide aggregated fee statistics.Technical Fixes & Improvements
soroban-event-worker.ts(extra closing brace) and resolved anioredisimport conflict for ESM compatibility inredis.ts.stream.controller.tsto fixaddressproperty access errors.SSEServiceclass to support named imports in the test suite.stream.test.tsto satisfy TypeScript requirements.Acceptance Criteria Verified
fee_collectedevents are written to theStreamEventtable.stream.fee_collectedSSE events are broadcast to admins.npm run buildcompletes successfully.